home *** CD-ROM | disk | FTP | other *** search
/ Chip 2007 January, February, March & April / Chip-Cover-CD-2007-02.iso / Pakiet bezpieczenstwa / mini Pentoo LiveCD 2006.1 / mpentoo-2006.1.iso / livecd.squashfs / etc / kismet_drone.conf < prev    next >
Text File  |  2006-04-19  |  4KB  |  100 lines

  1. # Kismet drone config file
  2.  
  3. version=Feb.04.01a
  4.  
  5. # Name of server (Purely for organiational purposes)
  6. servername=Kismet
  7.  
  8. # User to setid to (should be your normal user)
  9. suiduser=your_user_here
  10.  
  11. # Port to serve packet data... This probably shouldn't be the same as the port
  12. # you configured kismet_server for, or else you'll have problems running them 
  13. # on the same system.
  14. tcpport=3501
  15. # People allowed to connect, comma seperated IP addresses or network/mask
  16. # blocks.  Netmasks can be expressed as dotted quad (/255.255.255.0) or as
  17. # numbers (/24)
  18. allowedhosts=127.0.0.1
  19. # Address to bind to.  Should be an address already configured already on 
  20. # this host, reverts to INADDR_ANY if specified incorrectly.
  21. bindaddress=127.0.0.1
  22. # Maximum number of concurrent stream attachments
  23. maxclients=5
  24.  
  25. # Sources are defined as:
  26. # source=sourcetype,interface,name[,initialchannel]
  27. # Source types and required drivers are listed in the README.
  28. # The initial channel is optional, if hopping is not enabled it can be used
  29. # to set the channel the interface listens on.
  30. # YOU MUST CHANGE THIS TO BE THE SOURCE YOU WANT TO USE
  31. source=none,none,addme
  32.  
  33. # Comma-separated list of sources to enable.  This is only needed if you wish 
  34. # to selectively enable multiple sources.
  35. # enablesources=prism,cisco
  36.  
  37. # Do we channelhop?
  38. channelhop=true
  39.  
  40. # How many channels per second do we hop?  (1-10)
  41. channelvelocity=5
  42.  
  43. # By setting the dwell time for channel hopping we override the channelvelocity
  44. # setting above and dwell on each channel for the given number of seconds.
  45. #channeldwell=10
  46.  
  47. # Do we split channels between cards on the same spectrum?  This means if 
  48. # multiple 802.11b capture sources are defined, they will be offset to cover
  49. # the most possible spectrum at a given time.  This also controls splitting
  50. # fine-tuned sourcechannels lines which cover multiple interfaces (see below)
  51. splitchannels=true
  52.  
  53. # Basic channel hopping control:
  54. # These define the channels the cards hop through for various frequency ranges
  55. # supported by Kismet.   More finegrain control is available via the 
  56. # "sourcechannels" configuration option.
  57. # Don't change the IEEE80211<x> identifiers or channel hopping won't work.
  58.  
  59. # Users outside the US might want to use this list:
  60. # defaultchannels=IEEE80211b:1,7,13,2,8,3,14,9,4,10,5,11,6,12
  61. defaultchannels=IEEE80211b:1,6,11,2,7,3,8,4,9,5,10
  62.  
  63. # 802.11g uses the same channels as 802.11b...
  64. defaultchannels=IEEE80211g:1,6,11,2,7,3,8,4,9,5,10
  65.  
  66. # 802.11a channels are non-overlapping so sequential is fine.  You may want to
  67. # adjust the list depending on the channels your card actually supports.
  68. # defaultchannels=IEEE80211a:36,40,44,48,52,56,60,64,100,104,108,112,116,120,124,128,132,136,140,149,153,157,161,184,188,192,196,200,204,208,212,216 
  69. defaultchannels=IEEE80211a:36,40,44,48,52,56,60,64
  70.  
  71. # Combo cards like Atheros use both 'a' and 'b/g' channels.  Of course, you
  72. # can also explicitly override a given source.  You can use the script 
  73. # extras/listchan.pl to extract all the channels your card supports.
  74. defaultchannels=IEEE80211ab:1,6,11,2,7,3,8,4,9,5,10,36,40,44,48,52,56,60,64
  75.  
  76. # Fine-tuning channel hopping control:
  77. # The sourcechannels option can be used to set the channel hopping for 
  78. # specific interfaces, and to control what interfaces share a list of 
  79. # channels for split hopping.  This can also be used to easily lock
  80. # one card on a single channel while hopping with other cards.
  81. # Any card without a sourcechannel definition will use the standard hopping
  82. # list.
  83. # sourcechannels=sourcename[,sourcename]:ch1,ch2,ch3,...chN
  84.  
  85. # ie, for us channels on the source 'prism2source' (same as normal channel
  86. # hopping behavior):
  87. # sourcechannels=prism2source:1,6,11,2,7,3,8,4,9,5,10
  88.  
  89. # Given two capture sources, "prism2a" and "prism2b", we want prism2a to stay
  90. # on channel 6 and prism2b to hop normally.  By not setting a sourcechannels 
  91. # line for prism2b, it will use the standard hopping.
  92. # sourcechannels=prism2a:6
  93.  
  94. # To assign the same custom hop channel to multiple sources, or to split the 
  95. # same custom hop channel over two sources (if splitchannels is true), list
  96. # them all on the same sourcechannels line:
  97. # sourcechannels=prism2a,prism2b,prism2c:1,6,11
  98.  
  99.